WDV221
Create New User
Instructions
- Create an email validation function that is triggered from the button click even and does the following:
-
Gets the email address entered in the text box and performs validation check for an "@"
-
Gives an error message if the email is missing an "@". The message should be displayed in the errorMessage span.
-
Sets a solid 2px red border around the userEmail text box
-
Clears the errorMessage span and resets the border of userEmail if there are no errors. This should also happen when the reset button is pressed.
-
Create a function called checkPasswordStrength that triggers on the keyUp of the userPassword text box.
- If the length of the password is less than 5 characters display the word "Weak" in red in the passwordStrength span
- If the length of the password is greater than 5 characters but less than 10 display the word "Medium" in yellow in the passwordStrength span
- If the length of the password is greater than 10 characters display the word "Strong" in green in the passwordStrength span